home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2005 October
/
PCWOCT05.iso
/
Software
/
FromTheMag
/
XAMPP 1.4.14
/
xampp-win32-1.4.14-installer.exe
/
xampp
/
phpMyAdmin
/
lang
/
add_message.sh
< prev
next >
Wrap
Linux/UNIX/POSIX Shell Script
|
2003-11-18
|
630b
|
25 lines
#!/bin/bash
# $Id: add_message.sh,v 2.0 2003/11/18 15:20:38 nijel Exp $
#
# Shell script that adds a message to all message files (Lem9)
#
# Example: add_message.sh '$strNewMessage' 'new message contents'
#
if [ $# -ne 2 ] ; then
echo "usage: add_message.sh '\$strNewMessage' 'new message contents'"
exit 1
fi
for file in *.inc.php
do
echo $file " "
grep -v '?>' ${file} > ${file}.new
echo "$1 = '"$2"'; //to translate" >> ${file}.new
echo "?>" >> ${file}.new
rm $file
mv ${file}.new $file
done
echo " "
echo "Message added to all message files (including english)"